home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941221-19950208 / 000236_news@columbia.edu_Sun Jan 22 02:28:39 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19597
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 21 Jan 1995 21:28:48 -0500
  3. Received: by apakabar.cc.columbia.edu id AA27005
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 21 Jan 1995 21:28:45 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: CKermit Transfers
  9. Date: 22 Jan 1995 02:28:39 GMT
  10. Organization: Columbia University
  11. Lines: 70
  12. Message-Id: <3fsfsn$qbq@apakabar.cc.columbia.edu>
  13. References: <3fphj0$tm@nova.np.ac.sg>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3fphj0$tm@nova.np.ac.sg>, Loke Teng Yan <93202707@np.ac.sg> wrote:
  18. >I've just started using CKermit for OS/2, and have some stuff to ask about
  19. >it. For dialling, is there a command whereby I can see my phonebook entries? 
  20. >
  21. Hmmm, I guess not, other than:
  22.  
  23.   type c:\ckermit\ckermit.kdd
  24.  
  25. or (more generally):
  26.  
  27.   type \m(_dialdir) ; This variable holds the name of the dialing directory.
  28.  
  29. You could add a macro definition for this to your CKERMOD.INI file,
  30. something like:
  31.  
  32.   define numbers type \m(_dialdir)
  33.  
  34. or something fancier, e.g. to list all entries that match a particular
  35. string.  But see below about the services directory.
  36.  
  37. >What is the command for making CKermit stay at 14400bps even if the line is
  38. >only 2400bps?
  39. >
  40. SET DIAL SEPEED-MATCHING OFF.
  41.  
  42. >What should I do to make the connection automated, that is,
  43. >when a connection is established, the "connect" command should be automated?
  44. >
  45. You can write script programs to do whatever you want.  Script programming
  46. can't be explained in a short message - you should read the manual; three
  47. chapters of it cover script programming.
  48.  
  49. >How do I set up the program to redial the number after a timeout?
  50. >
  51. There is a kind of "higher level" dialing directory, called the services
  52. directory, that does this for you automatically.  The mechanics are explained
  53. in complete detail in the manual, and from a user standpoint also in the
  54. CKERMIT.INF file.
  55.  
  56. >For file transfers, I get a much better performance, compared to the MS-DOS
  57. >version that I used. The number of packets is about 999, and the cps rate
  58. >for binary files can go to 500+. Is it possible to further speed up the
  59. >transfer? What does the "Number of Windows" (or something like that) mean?
  60. >
  61. Again, all explained in the manual.  About performance, you should also
  62. look at the FAQ:
  63.  
  64.   ftp://kermit.columbia.edu/kermit/FAQ.txt
  65.  
  66. Manual:
  67.  
  68.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Digital Press /
  69.   Butterworth-Heinemann, Woburn, MA, 1993, 514 pages, ISBN 1-55558-108-0
  70.  
  71.   US single-copy price: $36.95; quantity discounts available.  Available in
  72.   computer bookstores or directly from Columbia University:
  73.  
  74.     Kermit Development and Distribution
  75.     Columbia University Academic Information Systems
  76.     612 West 115th Street
  77.     New York, NY  10025  USA
  78.     Telephone: (USA) 212 854-3703
  79.  
  80.   Domestic and overseas orders accepted.  Price: $36.95 (US, Canada, and
  81.   Mexico), $47 elsewhere.  Orders may be paid by MasterCard or Visa, or
  82.   prepaid by check in US dollars.  Add $35 bank fee for checks not drawn on
  83.   a US bank.  Price includes shipping.  Do not include sales tax.
  84.   Inquire about quantity discounts.
  85.  
  86. - Frank